home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / Filezilla Server / FileZilla_Server-0_9_41.exe / source / interface / OptionsPage.cpp < prev    next >
C/C++ Source or Header  |  2011-11-06  |  2KB  |  74 lines

  1. // FileZilla Server - a Windows ftp server
  2.  
  3. // Copyright (C) 2002-2004 - Tim Kosse <tim.kosse@gmx.de>
  4.  
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9.  
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14.  
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18.  
  19. // OptionsPage.cpp: Implementierungsdatei
  20. //
  21.  
  22. #include "stdafx.h"
  23. #include "filezilla server.h"
  24. #include "OptionsPage.h"
  25. #include "OptionsDlg.h"
  26.  
  27. #if defined(_DEBUG) && !defined(MMGR)
  28. #define new DEBUG_NEW
  29. #undef THIS_FILE
  30. static char THIS_FILE[] = __FILE__;
  31. #endif
  32.  
  33. /////////////////////////////////////////////////////////////////////////////
  34. // Dialogfeld COptionsPage 
  35.  
  36.  
  37. COptionsPage::COptionsPage(COptionsDlg *pOptionsDlg, UINT nID, CWnd *pParent /*=NULL*/)
  38.     : CSAPrefsSubDlg(nID, pParent)
  39. {
  40.     m_pOptionsDlg = pOptionsDlg;
  41.     //{{AFX_DATA_INIT(COptionsPage)
  42.         // HINWEIS: Der Klassen-Assistent fⁿgt hier Elementinitialisierung ein
  43.     //}}AFX_DATA_INIT
  44. }
  45.  
  46.  
  47. void COptionsPage::DoDataExchange(CDataExchange* pDX)
  48. {
  49.     CSAPrefsSubDlg::DoDataExchange(pDX);
  50.     //{{AFX_DATA_MAP(COptionsPage)
  51.         // HINWEIS: Der Klassen-Assistent fⁿgt hier DDX- und DDV-Aufrufe ein
  52.     //}}AFX_DATA_MAP
  53. }
  54.  
  55. BOOL COptionsPage::IsDataValid()
  56. {
  57.     return TRUE;
  58. }
  59.  
  60. void COptionsPage::LoadData()
  61. {
  62. }
  63.  
  64. void COptionsPage::SaveData()
  65. {
  66. }
  67.  
  68.  
  69. BEGIN_MESSAGE_MAP(COptionsPage, CSAPrefsSubDlg)
  70.     //{{AFX_MSG_MAP(COptionsPage)
  71.         // HINWEIS: Der Klassen-Assistent fⁿgt hier Zuordnungsmakros fⁿr Nachrichten ein
  72.     //}}AFX_MSG_MAP
  73. END_MESSAGE_MAP()
  74.